type strconv.decimal
20 uses
strconv (current package)
atof.go#L74: func (b *decimal) set(s string) (ok bool) {
atof.go#L314: func (d *decimal) floatBits(flt *floatInfo) (b uint64, overflow bool) {
atof.go#L605: var d decimal
atof.go#L656: var d decimal
decimal.go#L14: type decimal struct {
decimal.go#L22: func (a *decimal) String() string {
decimal.go#L71: func trim(a *decimal) {
decimal.go#L81: func (a *decimal) Assign(v uint64) {
decimal.go#L110: func rightShift(a *decimal, k uint) {
decimal.go#L269: func leftShift(a *decimal, k uint) {
decimal.go#L315: func (a *decimal) Shift(k int) {
decimal.go#L335: func shouldRoundUp(a *decimal, nd int) bool {
decimal.go#L354: func (a *decimal) Round(nd int) {
decimal.go#L366: func (a *decimal) RoundDown(nd int) {
decimal.go#L375: func (a *decimal) RoundUp(nd int) {
decimal.go#L399: func (a *decimal) RoundedInteger() uint64 {
ftoa.go#L164: d := new(decimal)
ftoa.go#L236: func roundShortest(d *decimal, mant uint64, exp int, flt *floatInfo) {
ftoa.go#L266: upper := new(decimal)
ftoa.go#L285: lower := new(decimal)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |